home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / BTNMFC.PAK / BUTTON.CPP < prev    next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  86 lines

  1. // button.cpp : Implementation of CButtonApp and DLL registration.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #include "stdafx.h"
  14. #include "button.h"
  15.  
  16. #ifdef _DEBUG
  17. #undef THIS_FILE
  18. static char BASED_CODE THIS_FILE[] = __FILE__;
  19. #endif
  20.  
  21.  
  22. CButtonApp NEAR theApp;
  23.  
  24. const GUID CDECL BASED_CODE _tlid =
  25.         { 0x4a8c9992, 0x7713, 0x101b, { 0xa5, 0xa1, 0x4, 0x2, 0x1c, 0x0, 0x94, 0x2 } };
  26. const WORD _wVerMajor = 1;
  27. const WORD _wVerMinor = 0;
  28.  
  29.  
  30. ////////////////////////////////////////////////////////////////////////////
  31. // CButtonApp::InitInstance - DLL initialization
  32.  
  33. BOOL CButtonApp::InitInstance()
  34. {
  35.     BOOL bInit = COleControlModule::InitInstance();
  36.  
  37.     if (bInit)
  38.     {
  39.     }
  40.  
  41.     return bInit;
  42. }
  43.  
  44.  
  45. ////////////////////////////////////////////////////////////////////////////
  46. // CButtonApp::ExitInstance - DLL termination
  47.  
  48. int CButtonApp::ExitInstance()
  49. {
  50.     return COleControlModule::ExitInstance();
  51. }
  52.  
  53.  
  54. /////////////////////////////////////////////////////////////////////////////
  55. // DllRegisterServer - Adds entries to the system registry
  56.  
  57. STDAPI DllRegisterServer(void)
  58. {
  59.     AFX_MANAGE_STATE(_afxModuleAddrThis);
  60.  
  61.     if (!AfxOleRegisterTypeLib(AfxGetInstanceHandle(), _tlid))
  62.         return ResultFromScode(SELFREG_E_TYPELIB);
  63.  
  64.     if (!COleObjectFactoryEx::UpdateRegistryAll(TRUE))
  65.         return ResultFromScode(SELFREG_E_CLASS);
  66.  
  67.     return NOERROR;
  68. }
  69.  
  70.  
  71. /////////////////////////////////////////////////////////////////////////////
  72. // DllUnregisterServer - Removes entries from the system registry
  73.  
  74. STDAPI DllUnregisterServer(void)
  75. {
  76.     AFX_MANAGE_STATE(_afxModuleAddrThis);
  77.  
  78.     if (!AfxOleUnregisterTypeLib(_tlid))
  79.         return ResultFromScode(SELFREG_E_TYPELIB);
  80.  
  81.     if (!COleObjectFactoryEx::UpdateRegistryAll(FALSE))
  82.         return ResultFromScode(SELFREG_E_CLASS);
  83.  
  84.     return NOERROR;
  85. }
  86.